This python program is to delete the directory.
CODE:
import os folder_path = 'images' if os.path.exists(folder_path): try: os.rmdir(folder_path) print(f"Folder '{folder_path}' and its contents have been deleted.") except Exception as e: print(f"An error occurred while deleting the folder: {e}") else:print(f"Folder '{folder_path}' does not exist.")
I got this following error while deleting the folder in python. [WinError 145] The directory is not empty: 'images'
SOLUTION:
If you want to delete a non-empty directory, we need to use shutil.rmtree()
CODE:
import os import shutil folder_path = 'images' if os.path.exists(folder_path): try: shutil.rmtree(folder_path) print(f"Folder '{folder_path}' and its contents have been deleted.") except Exception as e: print(f"An error occurred while deleting the folder: {e}") else: print(f"Folder '{folder_path}' does not exist.")
VIDEO GUIDE::
Post your comments / questions
Recent Article
- How to create custom 404 error page in Django?
- Requested setting INSTALLED_APPS, but settings are not configured. You must either define..
- ValueError:All arrays must be of the same length - Python
- Check hostname requires server hostname - SOLVED
- How to restrict access to the page Access only for logged user in Django
- Migration admin.0001_initial is applied before its dependency admin.0001_initial on database default
- Add or change a related_name argument to the definition for 'auth.User.groups' or 'DriverUser.groups'. -Django ERROR
- Addition of two numbers in django python
Related Article